home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / timer.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-04-08  |  524 b   |  28 lines

  1. /*
  2.   ImageMagick Timer Methods.
  3. */
  4. #ifndef _MAGICK_TIMER_H
  5. #define _MAGICK_TIMER_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. extern MagickExport double
  12.   GetElapsedTime(TimerInfo *),
  13.   GetUserTime(TimerInfo *);
  14.  
  15. extern MagickExport unsigned int
  16.   ContinueTimer(TimerInfo *);
  17.  
  18. extern MagickExport void
  19.   GetTimerInfo(TimerInfo *),
  20.   ResetTimer(TimerInfo *),
  21.   StartTimer(TimerInfo *,const unsigned int);
  22.  
  23. #if defined(__cplusplus) || defined(c_plusplus)
  24. }
  25. #endif
  26.  
  27. #endif
  28.